home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / presto / presto10.lha / src / debug.h < prev    next >
C/C++ Source or Header  |  1991-12-11  |  186b  |  12 lines

  1. extern Spinlock debug_lock;
  2.  
  3. class dstream {
  4.     int d_print_level;
  5.     int d_flush;
  6. public:
  7.     dstream (int print_level, int flush=1);
  8.     void operator<< (char* string);
  9. };
  10.  
  11. extern dstream dout;
  12.